home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
tmkeep1
/
install.bat
next >
Wrap
DOS Batch File
|
1991-12-11
|
1KB
|
51 lines
echo off
IF NOT EXIST TK.001 GOTO ERROR
IF NOT EXIST TK.002 GOTO ERROR
IF NOT EXIST TK.003 GOTO ERROR
:BEGIN
echo
echo
echo
echo
echo
echo
echo
echo
echo
echo
echo ╔═══════ TimeKeeper II Installation ════════╗
echo ║ ║
echo ║ ║
echo ║ Installing ... Do Not Interrupt ║
echo ║ ║
echo ║ ║
echo ╚══════════════════════════════════════════════╝
echo
echo
echo
echo
echo
echo
echo
echo
echo
COPY /B TK.001+TK.002+TK.003 TK.EXE >nul
DEL TK.001
DEL TK.002
DEL TK.003
goto finish
:ERROR
echo
echo In order to install TimeKeeper II, all files must
echo be in available. Make sure you have all the necessary
echo necessary files to complete the installation. See
echo the README.1ST file for a list of the required files.
:UNKNOWN
echo Install cancelled.
GOTO END
:finish
echo
echo
echo TimeKeeper II has been sucessfully installed.
:END